Passing Server Control Values Between Pages
============================================

Server.Transfer allows you to access values from one page, when transferring to 
another via properties.

Using This Example With From IIS WWWROOT
----------------------------------------
Put this project in your wwwroot, from the IIS console, right click the directory folder,
select properties. Make sure "read" is checked, click "Create" next to "Application name:".

Using This Example From Your Projects Directory
-----------------------------------------------
In your IIS web console, right click "Default Web Site" (assuming you haven't renamed the default),
select New->Virtual Directory..., follow the directions in the wizard. Also, make sure your project
directory has the appropriate security (check the permissions on the folders in wwwroot for details).

For More Information
---------------------
See MSDN for details:
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpguide/html/cpconpassingservercontrolvaluesbetweenpages.asp

